home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Development Tools & Languages / Dylan Related / Mindy / Mindy 1.2 - portable sources / compat / rint.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-15  |  130 b   |  8 lines  |  [TEXT/ttxt]

  1. #include <math.h>
  2.  
  3. double rint(x) double x;
  4. {
  5.   /* uh, this is wrong unless rounding to -infinity */
  6.   return floor(x+0.5);                
  7. }
  8.